Procedural Sandpile Simulation

This simulation demonstrates the dynamics of the Abelian sandpile model – a classic example of self‑organized criticality.

Theory Behind the Simulation

The sandpile model is a simple cellular automaton that illustrates self‑organized criticality. Grains of sand are added to a grid one at a time. When a cell’s grain count reaches a critical threshold (here, 4), the cell “topples,” distributing one grain to each of its four neighboring cells. This may in turn cause further topplings, leading to avalanches whose sizes follow a power‑law distribution.

Despite its simplicity, the model produces intricate, emergent patterns and is a canonical example of how local interactions can yield globally complex behavior. This simulation continuously adds sand and processes the resulting chain reactions, producing ever‑changing procedural graphics.

Code Explanation

The simulation is implemented entirely in JavaScript using an HTML5 canvas. Below is an overview of the main components:

This structure ensures that all graphics are generated procedurally and the simulation continuously evolves in a visually appealing manner.